home *** CD-ROM | disk | FTP | other *** search
/ CD-ROM Windows Selection / Windows Selection 1.iso / Programmer's Utilities / GroundControl / gc.exe / string.txt next >
Encoding:
Text File  |  1997-03-25  |  12.3 KB  |  202 lines

  1. 101    &About GroundControl...
  2. 102    This command will activate a window by title. The active window has the highlighted title bar.
  3. 103    This command will execute a program by name.
  4. 104    Displays text in a message box with an "OK" button. This is used for notifications.
  5. 105    Displays text in a message box with an "OK" and a "Cancel" button. The result can be checked and used in an If statement to change macro flow.
  6. 106    This command will pause the execution of the macro for the number of milliseconds you specify.  \n1 second = 1,000 milliseconds\n1 minute = 60,000 milliseconds\n
  7. 107    Stops the macro execution.
  8. 108    Displays a dialog box that will prompt for input. The input can be sent as keystrokes via the SendInput functions. Enter the text to display as the prompt. For example:\nInputBox("Enter your first name")\nSendInput()\n
  9. 109    Closes all programs and displays a login dialog box.
  10. 110    Writes text to the specified file with a date and time stamp.
  11. 111    Reboots the system.
  12. 112    Shuts the system down.
  13. 113    Executes the specified macro file.
  14. 114    Jumps the macro's execution to the line after the label name.
  15. 115    This command will send keystrokes to the active window or application.
  16. 116    This command will send keystrokes to the specified window.
  17. 117    Writes text to the default error log file. The name and location of the error log is defined in the System Options dialog.
  18. 118    Closes the window with the specified title.  
  19. 119    A comment is a macro line that will not execute.  Use comments to make notations in your macro, or for debugging.
  20. 120    Sends keys that were input from the last InputBox() command to the active window.
  21. 121    Sends keys that were input from the last InputBox() to a window based on its title. For example:\nInputBox("Enter your name") \nSendInputToWindow("Untitled - Notepad")\n
  22. 122    Executes a command for a specified number of times. For example:\nRepeat(SendKeys("This is a test~"),10)\n
  23. 123    Sounds the system beep.
  24. 124    Plays a wave file. For example:\nPlaySound("c:\winnt\media\The Microsoft Sound.wav")\n
  25. 125    Executes a system power off (if your hardware supports it).
  26. 126    Appends a line to a file (with a carriage return). This function will create the file if it does not exist. For example:\nWriteLineToFile("test.txt","Line 1") \nWriteLineToFile("test.txt","Line 2")\n
  27. 127    Appends text to a file (without a carriage return). This function will create the file if it does not exist. For example:\nWriteToFile("test.txt","This text is ")\nWriteToFile("test.txt","on the same line")
  28. 128    GroundControl\n\nGround\nGroundControl Files (*.gc)\n.gc\nGroundControl.Document\nGround Document
  29. 129    Minimizes the window by the title. The window title is optional. If the window title is not specified, the current active window is minimized. For example:\nMinimizeWindow("Untitled - Notepad")\n
  30. 130    Normalizes the window by the title. The window title is optional. If the window title is not specified, the current active window is normalized.\n
  31. 131    Returns TRUE if the file exists. For example:\nFileExist("c:\test.log")\n
  32. 132    Returns TRUE if the current active window title matches the passed window title.\n
  33. 133    Returns TRUE if there is a window that has a title that matches the passed window title.\n
  34. 134    These functions are used after a MessageBox(), MessageBoxOkCancel(), or InputBox() to detect which key the user pressed to exit the dialog. For example:\nMessageBoxOkCancel("Hit Ok to beep")\nIf(ResponseOk(),Beep())\n
  35. 135    These functions are used after a MessageBox(), MessageBoxOkCancel(), or InputBox() to detect which key the user pressed to exit the dialog. For example:\nMessageBoxOkCancel("Hit cancel to exit")\nIf(ResponseCancel(),ExitMacro())\n
  36. 136    This defines the label that the program will go to when an error occurs.
  37. 137    This command sends the Quit command to the specified program, based on its window title.
  38. 138    This command will execute a program.
  39. 139    This command will set the working directory for the running macro.
  40. 140    This line is a label. It is used with the GoTo command.
  41. 141    This is a blank line. It has no effect, but makes your macro more readable.
  42. 142    Sets the window caption for all message box and input box commands.
  43. 143    Sends a string containing environment variables to the active window.
  44. 144    Sends the current date and time based on a format string. For example:\nSendNow("The current date and time is: %x %X")
  45. 145    Checks a condition and performs an action if the test result is TRUE, and optionally, a different action if the test is FALSE.
  46. 146    Sends a single DDE command to an Application and Topic.
  47. 147    Sends a series of DDE commands stored in a script to an Application and Topic.
  48. 148    This command will execute a specified command while the TRUE condition is met.
  49. 149    This defines the start of a For-Next loop
  50. 150    Checks if a system resource is less than (<) a specified limit. If TRUE, the specified command is executed.
  51. 151    Checks if a system resource is more than (>) a specified limit. If TRUE, the specified command is executed.
  52. 152    This command logs a system resource or system information to a file.
  53. 153    Waits for a program to complete. It is used after the RunProgram command to pause macro execution until the program started is complete. You can specify the number of milliseconds to wait or -1 to wait indefinitely.
  54. 154    This runs a DOS command such as COPY, DIR, etc..
  55. 155    This function returns TRUE if the file is older than the specified number of seconds.
  56. 156    This command sends keystrokes from a file to the active window or application.
  57. 157    This logs an event to the system event file. The name and location of the event log is defined in the System Options dialog.
  58. 162    %lu KB
  59. 163    %lu KB Free on %c:
  60. 164    Unavailable
  61. 228    Maximizes the window by the title. The window title is optional. If the window title is not specified, the current active window is maximized. For example:\nMaximizeWindow("Untitled - Notepad")
  62. 30995    Visit the Cypress Technologies internet web site
  63. 32771    Add a new line\nAdd Line (Ctrl+A)
  64. 32772    Edit the current line\nEdit Line (Ctrl+E)
  65. 32773    Delete the current line\nDelete Line (Ctrl+D)
  66. 32774    Move the selected line up\nMove Up (Alt+U)
  67. 32775    Move the selected line down\nMove Down (Alt+D)
  68. 32776    Change the line to a comment or uncomment it\nComment
  69. 32777    Add blank line before current\nBlank Line
  70. 32778    Change the display font
  71. 32779    Run the macro (Ctrl+R)
  72. 32780    Test the current line (Ctrl+T)
  73. 32782    Edit the current line manually
  74. 32783    Manually edit the current line\nManual Edit (Ctrl+Enter)
  75. 32785    Test an If condition and execute an option\nIf
  76. 32786    Sound the default system beep\nBeep
  77. 32787    Play a full sound file\nPlaysound
  78. 32788    Send keys to the active window\nSend Keys Active
  79. 32789    Send a single DDE command to an application and topic\nDDE Command
  80. 32790    Send a DDE script file to an application and topic\nDDE Script
  81. 32791    Minimize a window\nMinimize
  82. 32792    Maximize a window\nMaximize
  83. 32793    Normalize ( Restore ) a window\nNormalize
  84. 32794    Close a window\nClose
  85. 32795    Bring a window to the foreground\nActivate Window
  86. 32796    Temporarily pause execution for a specified number of milliseconds\nDelay
  87. 32797    Create a notification message box with an Ok button\nMessage Box
  88. 32798    Create a question message box with Ok and Cancel buttons\nOk/Cancel Message Box
  89. 32799    This command will execute a program\nRun Program
  90. 32800    Show/Hide Extended Controls Bar\nControls
  91. 32801    Exit the current macro\nExit Macro
  92. 32803    Test if a file exists\nFile Exist
  93. 32804    Create an input message box to ask for and store a string\nInput Box
  94. 32805    Jump to a label\nGoto
  95. 32806    Logout\nLogout
  96. 32807    Set the working directory for the running macro\nSet Directory
  97. 32808    Set the window title for all message box and input box commands\nSet Caption
  98. 32809    Repeat a command for a specified number of times\nRepeat
  99. 32810    Send a stop command to a currently running program\nQuit Program
  100. 32811    Execute another macro file\nRun Macro
  101. 32812    Execute a system power off (if supported by the hardware)\nPower Off
  102. 32815    Enter a For Command\nFor Loop
  103. 32816    Perform a command while a condition is True\nWhile
  104. 32818    Append text to a text file (no carriage return)\nWrite Text to File
  105. 32819    Log an error to the default error log file\nLog Error
  106. 32820    Define the label to jump to if an error occurs\nOn Error 
  107. 32823    Exit the currently executing macro\nExit Macro
  108. 32824    Return TRUE if the specified file exists\nFile Exist
  109. 32825    Reboot the system\nReboot
  110. 32826    Shut the system down\nShutdown System
  111. 32827    Enter a label for use with a GoTo command\nLabel
  112. 32828    Send environment string to active window\nSend Environment
  113. 32831    Return TRUE if the specified window is the active window\nWindow Active
  114. 32832    Return TRUE if a window exists that matches the specified title \nFind Window
  115. 32833    Execute a command if the specified system resource is less than the specified limit\nIf Less Than
  116. 32834    Execute a command if the specified system resource is more than the specified limit\nIf More Than
  117. 32835    Log system information to a text file\nLog System Info
  118. 32836    Log message to a log file\nLog To File
  119. 32837    Send the string from the last input box to the active window\nSend Input To Active
  120. 32838    Send the string from the last input box to the specified window\nSend Input Specific
  121. 32839    Send keys to a specified window\nSend Keys Specific
  122. 32840    Send current time to the active window as keystrokes based on a format string\nSend Now
  123. 32844    Display the Standard Editing toolbar\nEdit Toolbar
  124. 32845    Display the Common Commands toolbar\nCommon Toolbar
  125. 32846    Display the DDE/SendKeys toolbar
  126. 32847    Display the System Functions toolbar\nSystem Toolbar
  127. 32848    Display the Conditions toolbar ( If, While, GoTo, etc. )
  128. 32849    Display the Window Controls toolbar
  129. 32850    Quick start help
  130. 32851    Display help on help
  131. 32852    Visit the Cypress Technologies web site
  132. 32853    Edit the system options
  133. 32855    Launch editor with current macro file
  134. 32856    Display a summary of all commands by category
  135. 57344    GroundControl
  136. 57345    For Help, press F1
  137. 57346    Select an object on which to get Help
  138. 57600    Create a new document\nNew
  139. 57601    Open an existing document\nOpen
  140. 57602    Close the active document\nClose
  141. 57603    Save the active document\nSave
  142. 57604    Save the active document with a new name\nSave As
  143. 57605    Change the printing options\nPage Setup
  144. 57606    Change the printer and printing options\nPrint Setup
  145. 57607    Print the active document\nPrint
  146. 57609    Display full pages\nPrint Preview
  147. 57616    Open this document
  148. 57617    Open this document
  149. 57618    Open this document
  150. 57619    Open this document
  151. 57620    Open this document
  152. 57621    Open this document
  153. 57622    Open this document
  154. 57623    Open this document
  155. 57624    Open this document
  156. 57625    Open this document
  157. 57626    Open this document
  158. 57627    Open this document
  159. 57628    Open this document
  160. 57629    Open this document
  161. 57630    Open this document
  162. 57631    Open this document
  163. 57632    Erase the selection\nErase
  164. 57633    Erase everything\nErase All
  165. 57634    Copy the selection and put it on the Clipboard\nCopy
  166. 57635    Cut the selection and put it on the Clipboard\nCut
  167. 57636    Find the specified text\nFind
  168. 57637    Insert Clipboard contents\nPaste
  169. 57640    Repeat the last action\nRepeat
  170. 57641    Replace specific text with different text\nReplace
  171. 57642    Select the entire document\nSelect All
  172. 57643    Undo the last action\nUndo
  173. 57644    Redo the previously undone action\nRedo
  174. 57653    Split the active window into panes\nSplit
  175. 57664    Display program information, version number and copyright\nAbout
  176. 57665    Quit the application; prompts to save documents\nExit
  177. 57666    Opens Help\nHelp Topics
  178. 57667    List Help topics\nHelp Topics
  179. 57668    Display instructions about how to use help\nHelp
  180. 57669    Display help for clicked on buttons, menus and windows\nHelp
  181. 57670    Display help for current task or command\nHelp
  182. 57680    Switch to the next window pane\nNext Pane
  183. 57681    Switch back to the previous window pane\nPrevious Pane
  184. 59136    EXT
  185. 59137    CAP
  186. 59138    NUM
  187. 59139    SCRL
  188. 59140    OVR
  189. 59141    REC
  190. 59392    Show or hide the toolbar\nToggle ToolBar
  191. 59393    Show or hide the status bar\nToggle StatusBar
  192. 61184    Change the window size
  193. 61185    Change the window position
  194. 61186    Reduce the window to an icon
  195. 61187    Enlarge the window to full size
  196. 61188    Switch to the next document window
  197. 61189    Switch to the previous document window
  198. 61190    Close the active window and prompts to save the documents
  199. 61202    Restore the window to normal size
  200. 61203    Activate Task List
  201. 61445    Close print preview mode\nCancel Preview
  202.